ReadOnlyListBase Properties

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Syntax

C#
[SerializableAttribute]
public abstract class ReadOnlyListBase<T>
Visual Basic (Declaration)
<SerializableAttribute> _
Public MustInherit Class ReadOnlyListBase(Of T)
Visual C++
[SerializableAttribute]
generic<typename T>
public ref class ReadOnlyListBase abstract

Type Parameters

T

The type exposes the following properties.

Public Properties

  NameDescription
Public propertyCount
The property must be overridden by the derived class to return the number of items in the list.
(Overrides ReadOnlyCollectionBase<(Of <T>)>..::Count.)
Public propertyItem
The get part of the indexer must be overridden by the derived class to get values of the list at a particular index.

Explicit Interface Implementations

  NameDescription
Explicit interface implemetationPrivate propertyICollection<(Of <T>)>..::IsReadOnly (Inherited from ReadOnlyCollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyICollection..::IsSynchronized
Indicates whether the collection is synchronized.
(Inherited from ReadOnlyCollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyICollection..::SyncRoot
Indicates the synchronization object for this collection.
(Inherited from ReadOnlyCollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyIList..::IsFixedSize
Returns whether the list is a fixed size. This implementation always returns true.
Explicit interface implemetationPrivate propertyIList..::IsReadOnly
Returns whether the list is read only. This implementation always returns true.
Explicit interface implemetationPrivate propertyIList..::Item
Gets or sets the value at a particular index in the list.

See Also